server_traders

	- list of individual trader visual models 
	- id is unique number ranging from 1 to 176
	- instance is non-unique number ranging from 1 to 17
	- description denotes location and category of interest


trader_tids

	- list of ITEM FOR SALE categories
	- trader is non-unique number ranging from 1 to 176
	- id column is unique number from 1 to 692


traders_data 

	- list of ITEMS FOR SALE
	- id is a unique number ranging from 4996 to 6742
	- tid is a non-unique number ranging from 452 to 692
	- each block with a unique tid is a number of related items for sale
		eg: unarmed ground, cars, ammo, machine guns, etc
	- contains reference to "afile", which is likely a trading script




SO....

server_traders gives us a trader unique ID
	
	for example 1 = weapons trader, Bash, with instance = 11

	trader_tids gives us a list of categories for trader ID = 1
		- 1 Sidearm, 2 Rifles, 3 Shotguns and Singleshot, 370 sniper rifles


		how does this get us id or tid in the traders_data table???


